home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1989 / 05 / mk.bat < prev    next >
DOS Batch File  |  1989-08-18  |  280b  |  17 lines

  1. echo off
  2. cls
  3. echo     ccxx joe.cxx
  4. ccxx joe.cxx
  5. if errorlevel == 1 goto stop
  6. echo     ztc sue.cpp
  7. ztc sue.cpp
  8. if errorlevel == 1 goto stop
  9. echo     cl joe sue
  10. cl joe sue
  11. if errorlevel == 1 goto stop
  12. echo remove MK.BAT
  13. goto end
  14. :stop
  15. echo Make: errors detected.  Stop.
  16. :end
  17.